home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WORDPAD.PAK / PAGESET.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  72 lines

  1. // pageset.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "wordpad.h"
  15. #include "resource.h"
  16. #include "pageset.h"
  17. #include "ruler.h"
  18. #include "ddxm.h"
  19. #include "helpids.h"
  20.  
  21. #ifdef _DEBUG
  22. #undef THIS_FILE
  23. static char BASED_CODE THIS_FILE[] = __FILE__;
  24. #endif
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CPageSetupDlg dialog
  28.  
  29. const DWORD CPageSetupDlg::m_nHelpIDs[] = 
  30. {
  31.     IDC_EDIT_TM, IDH_WORDPAD_TOPMARGIN,
  32.     IDC_EDIT_BM, IDH_WORDPAD_BOTTOMMARGIN,
  33.     IDC_EDIT_LM, IDH_WORDPAD_LEFTMARGIN,
  34.     IDC_EDIT_RM, IDH_WORDPAD_RIGHTMARGIN,
  35.     IDC_BOX, IDH_COMM_GROUPBOX,
  36.     0, 0
  37. };
  38.  
  39. CPageSetupDlg::CPageSetupDlg(CWnd* pParent /*=NULL*/)
  40.     : CCSDialog(CPageSetupDlg::IDD, pParent)
  41. {
  42.     //{{AFX_DATA_INIT(CPageSetupDlg)
  43.     m_nTopMargin = 0;
  44.     m_nRightMargin = 0;
  45.     m_nLeftMargin = 0;
  46.     m_nBottomMargin = 0;
  47.     //}}AFX_DATA_INIT
  48. }
  49.  
  50. void CPageSetupDlg::DoDataExchange(CDataExchange* pDX)
  51. {
  52.     CCSDialog::DoDataExchange(pDX);
  53.     //{{AFX_DATA_MAP(CPageSetupDlg)
  54.     DDX_Twips(pDX, IDC_EDIT_TM, m_nTopMargin);
  55.     DDV_MinMaxTwips(pDX, m_nTopMargin, -31680, 31680);
  56.     DDX_Twips(pDX, IDC_EDIT_RM, m_nRightMargin);
  57.     DDV_MinMaxTwips(pDX, m_nRightMargin, -31680, 31680);
  58.     DDX_Twips(pDX, IDC_EDIT_LM, m_nLeftMargin);
  59.     DDV_MinMaxTwips(pDX, m_nLeftMargin, -31680, 31680);
  60.     DDX_Twips(pDX, IDC_EDIT_BM, m_nBottomMargin);
  61.     DDV_MinMaxTwips(pDX, m_nBottomMargin, -31680, 31680);
  62.     //}}AFX_DATA_MAP
  63. }
  64.  
  65. BEGIN_MESSAGE_MAP(CPageSetupDlg, CCSDialog)
  66.     //{{AFX_MSG_MAP(CPageSetupDlg)
  67.     //}}AFX_MSG_MAP
  68. END_MESSAGE_MAP()
  69.  
  70. /////////////////////////////////////////////////////////////////////////////
  71. // CPageSetupDlg message handlers
  72.